-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding DEC operators #116
adding DEC operators #116
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR breaks our (unofficial) "one function per .py file" rule. Do we want to break this?
I don't care whether we have separate files for this or not, I have no strong feelings. |
src/gpytoolbox/dec_h1.py
Outdated
""" | ||
|
||
l_sq = halfedge_lengths_squared(V,F) | ||
return dec_h1_intrinsic(l_sq,F,E_to_he=E_to_he) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aha! Shouldn't this be dec_h1inv_intrinsic
?
See typo above. We did not catch that typo due to a bigger problem: unless I am missing something, currently, the |
Good point. Will fix this and add unit tests. |
This looks good to me now! Happy to merge |
This pull request adds DEC operators in the style of https://www.cs.cmu.edu/~kmcrane/Projects/DDG/
@sgsellan I'd be glad if you could double check to make sure I did these correctly :)